Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@changesets/types
Advanced tools
@changesets/types is a TypeScript type definitions package for the Changesets tool, which is used to manage versioning and changelogs for monorepos. It provides type definitions for various components and configurations used in the Changesets workflow.
Changeset type
Defines the structure of a changeset, including an ID, summary, and a list of releases with their respective types.
import { Changeset } from '@changesets/types';
const exampleChangeset: Changeset = {
id: 'example-id',
summary: 'This is an example changeset',
releases: [
{ name: 'package-a', type: 'minor' },
{ name: 'package-b', type: 'patch' }
]
};
Release type
Defines the structure of a release, including the package name and the type of release (major, minor, or patch).
import { Release } from '@changesets/types';
const exampleRelease: Release = {
name: 'package-a',
type: 'minor'
};
Config type
Defines the structure of the Changesets configuration, including options for changelog generation, commit behavior, access level, and the base branch.
import { Config } from '@changesets/types';
const exampleConfig: Config = {
changelog: ['@changesets/changelog-github', { repo: 'org/repo' }],
commit: false,
access: 'public',
baseBranch: 'main'
};
The 'semver' package provides utilities for parsing, validating, and incrementing semantic version numbers. While it focuses on versioning, it does not provide the same level of integration with changelogs and monorepos as @changesets/types.
The 'standard-version' package automates versioning and changelog generation based on conventional commits. It offers similar functionality to Changesets but is more opinionated and less flexible in terms of configuration.
Lerna is a tool for managing JavaScript projects with multiple packages. It includes versioning and changelog generation features, but it is a more comprehensive tool that also handles package management and publishing, whereas @changesets/types focuses on type definitions for the Changesets tool.
A package of types for use in changesets, or projects wishing to extend them.
Of these, the most useful types are:
The format for a changeset as of changesets version 2.
The shape of the object used for generating changelog entries.
The combined object used to version packages and update changelogs.
FAQs
Common types shared between changeset packages
We found that @changesets/types demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.